home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -screenplay- / otherstuff / inform_lib610 / parser.h < prev    next >
Text File  |  1999-11-29  |  1KB  |  39 lines

  1. ! ----------------------------------------------------------------------------
  2. !  PARSER:  Front end to parser.
  3. !
  4. !  Supplied for use with Inform 6
  5. !
  6. !  (c) Graham Nelson 1993, 1994, 1995, 1996, 1997, 1998, 1999
  7. !      but freely usable (see manuals)
  8. ! ----------------------------------------------------------------------------
  9. System_file;
  10. IFDEF INFIX; IFNDEF DEBUG; Constant DEBUG; ENDIF; ENDIF;
  11. IFDEF STRICT_MODE; IFNDEF DEBUG; Constant DEBUG; ENDIF; ENDIF;
  12. Constant LibSerial  = "991106";
  13. Constant LibRelease = "6/10";
  14. Constant Grammar__Version = 2;
  15. IFNDEF VN_1610;
  16. Message fatalerror "*** Library 6/10 needs Inform v6.10 or later to work ***";
  17. ENDIF;
  18. Include "linklpa";
  19. Fake_Action LetGo;
  20. Fake_Action Receive;
  21. Fake_Action ThrownAt;
  22. Fake_Action Order;
  23. Fake_Action TheSame;
  24. Fake_Action PluralFound;
  25. Fake_Action ListMiscellany;
  26. Fake_Action Miscellany;
  27. Fake_Action Prompt;
  28. Fake_Action NotUnderstood;
  29. IFDEF NO_PLACES;
  30. Fake_Action Places;
  31. Fake_Action Objects;
  32. ENDIF;
  33. [ Main; InformLibrary.play(); ];
  34. IFDEF USE_MODULES;
  35. Link "parserm";
  36. IFNOT;
  37. Include "parserm";
  38. ENDIF;
  39.